home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Documenter's Workbench 4.1.3
/
SGI Documentater's Workbench 4.1.3.iso
/
CDgrelnotes
next >
Wrap
Text File
|
1994-11-08
|
418b
|
24 lines
#!/bin/sh
dirname()
{
ans=`/usr/bin/expr \
"${1:-.}/" : '\(/\)/*[^/]*//*$' `
if [ -n "$ans" ];then
echo $ans
else
ans=`/usr/bin/expr \
"${1:-.}/" : '\(.*[^/]\)//*[^/][^/]*//*$' `
if [ -n "$ans" ];then
echo $ans
else
echo "."
fi
fi
exit 0
}
SRCDIR=`dirname $0`/relnotes/
grelnotes -xrm "Grelnotes*relnotesPath: $SRCDIR"